home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / t_sys5 / unixcpio.gz / unixnet.cpio / alloc.h < prev    next >
C/C++ Source or Header  |  1994-07-11  |  217b  |  17 lines

  1. #ifndef    NULL
  2. #define    NULL    (void *)0
  3. #endif
  4.  
  5. #define    NULLCHAR    (char *)NULL
  6. union header {
  7.     struct {
  8.         union header *ptr;
  9.         unsigned size;
  10.     } s;
  11.     long l;
  12. };
  13.  
  14. typedef union header HEADER;
  15. #define    NULLHDR    (HEADER *)NULL
  16.  
  17.